Dynomotion

Group: DynoMotion Message: 7455 From: Toby Rule Date: 5/13/2013
Subject: Board serial number

Hi Tom,

 

Is there a way to read the board serial number (or some other unique identifier) from software?

 

Thanks,

 

Toby

The information contained in this transmission is intended only for the person or entity
to which it is addressed and may contain II-VI Proprietary and/or II-VI Business Sensitive
material. If you are not the intended recipient, please contact the sender immediately
and destroy the material in its entirety, whether electronic or hard copy. You are
notified that any review, retransmission, copying, disclosure, dissemination or other
use of, or taking of any action in reliance upon this information by persons or entities 
other than the intended recipient is prohibited.
Group: DynoMotion Message: 7456 From: Tom Kerekes Date: 5/13/2013
Subject: Re: Board serial number
Hi Toby,

You can do this:

#include "KMotionDef.h"

extern int BoardSerial;

main()
{
    printf("Board Serial Number = %d\n",BoardSerial);
}


There is also an Unique Identifier in the USB Chip but the calls to read it would need to be added.

TK